home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / mesa-1.2.8 / widgets / src / glwmakecurrent.c < prev    next >
C/C++ Source or Header  |  1996-05-27  |  1KB  |  37 lines

  1. /* GLwMakeCurrent.c -- Implementation file for the Mesa widget
  2.    Copyright (C) 1995 Thorsten.Ohl @ Physik.TH-Darmstadt.de
  3.  
  4.    This library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Library General Public
  6.    License as published by the Free Software Foundation; either
  7.    version 2 of the License, or (at your option) any later version.
  8.  
  9.    This library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU Library General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU Library General Public
  15.    License along with this library; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.    $Id: GLwMakeCurrent.c,v 1.1 1995/04/22 15:29:54 ohl Exp $
  19.  */
  20.  
  21. #include <X11/IntrinsicP.h>
  22. #include <X11/CoreP.h>
  23. #include <GL/MesaDrawingAreaP.h>
  24.  
  25. void
  26. GLwMakeCurrent (Widget w)
  27. {
  28.   if (XtIsSubclass (w, mesaDrawingAreaWidgetClass))
  29.     XMesaMakeCurrent (MesaContext (w));
  30.   else
  31.     XtAppError (XtWidgetToApplicationContext (w),
  32.         "Not a MesaDrawingArea widget!");
  33. }
  34.  
  35. /* The End. */
  36.  
  37.